home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
LANG
/
SCHEME
/
GNU
/
SCM4E1
/
!Scm
/
slib
/
scmacro
< prev
next >
Wrap
Text File
|
1994-02-14
|
3KB
|
110 lines
;;; -*- Scheme -*-
;;;; scmacro.scm: Chris Hanson's Syntactic Closures macro implementation.
;;;; Syntaxer Output Interface
(define syntax-error slib:error)
(define impl-error slib:error)
(define (append-map procedure . lists)
(apply append (apply map (cons procedure lists))))
(define *counter* 0)
(define (make-name-generator)
(let ((suffix-promise
(make-promise
(lambda ()
(string-append "."
(number->string (begin
(set! *counter* (+ *counter* 1))
*counter*)))))))
(lambda (identifier)
(string->symbol
(string-append "."
(symbol->string (identifier->symbol identifier))
(promise:force suffix-promise))))))
(define (output/variable name)
name)
(define (output/literal-unquoted datum)
datum)
(define (output/literal-quoted datum);was output/constant (inefficient)
`(QUOTE ,datum))
(define (output/assignment name value)
`(SET! ,name ,value))
(define (output/top-level-definition name value)
`(DEFINE ,name ,value))
(define (output/conditional predicate consequent alternative)
`(IF ,predicate ,consequent ,alternative))
(define (output/sequence expressions)
(if (null? (cdr expressions))
(car expressions)
`(BEGIN ,@expressions)))
(define (output/combination operator operands)
`(,operator ,@operands))
(define (output/lambda pattern body)
`(LAMBDA ,pattern ,body))
(define (output/delay expression)
`(DELAY ,expression))
(define (output/unassigned)
`'*UNASSIGNED*)
(define (output/unspecific)
`'*UNSPECIFIC*)
(require 'promise) ; Portable support for force and delay.
(require 'record)
(require 'synchk) ; Syntax checker.
;;; This file is the macro expander proper.
(slib:load (in-vicinity (library-vicinity) "synclo"))
;;; These files define the R4RS syntactic environment.
(slib:load (in-vicinity (library-vicinity) "r4rsyn"))
(slib:load (in-vicinity (library-vicinity) "synrul"))
;;; OK, time to build the databases.
(initialize-scheme-syntactic-environment!)
;;; MACRO:EXPAND is for you to use. It takes an R4RS expression, macro-expands
;;; it, and returns the result of the macro expansion.
(define (synclo:expand expression)
(set! *counter* 0)
(compile/top-level (list expression) scheme-syntactic-environment))
(define macro:expand synclo:expand)
;;; Here are EVAL, EVAL! and LOAD which expand macros. You can replace the
;;; implementation's eval and load with them if you like.
(define base:eval slib:eval)
(define base:load load)
(define (synclo:eval x) (base:eval (macro:expand x)))
(define macro:eval synclo:eval)
(define (synclo:load <pathname>)
(call-with-input-file <pathname>
(lambda (port)
(let ((old-load-pathname *load-pathname*))
(set! *load-pathname* <pathname>)
(do ((o (read port) (read port)))
((eof-object? o))
(macro:eval o))
(set! *load-pathname* old-load-pathname)))))
(define macro:load synclo:load)
(provide 'syntactic-closures)
(provide 'macro) ;Here because we may have
;(require 'sc-macro)